home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 771 b | 36 lines | [TEXT/MPS ] |
- // UDefaultDocument.h
- // Copyright © 1991-96 by Apple Computer, Inc. All rights reserved.
-
- #ifndef __UDefaultDocument__
- #define __UDefaultDocument__
-
- #ifndef __UDOCUMENT__
- #include "UDocument.h"
- #endif
-
- #ifndef __UQD3DViewer__
- #include "UQD3DViewer.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // TDefaultDocument
- //----------------------------------------------------------------------------------------
-
- class TDefaultDocument: public TDocument
- {
- MA_DECLARE_CLASS;
-
- public:
- TDefaultDocument();
- // Constructor
- virtual ~TDefaultDocument();
- // Destructor
- virtual void IDefaultDocument();
- virtual void DoMakeViews(Boolean forPrinting); // Override
-
- private:
- TQD3DViewerView* fQD3DView1;
- };
-
- #endif
-